home *** CD-ROM | disk | FTP | other *** search
- on prepareMovie
- global gxmui
- set gxmui to new(xtra("MUI"))
- set lqtversion to getqtversionandxtrastatus()
- if (the platform contains "windows") and (getAt(lqtversion, 2) < 3) then
- alertthismoviemustneedqt3()
- quit()
- else
- if getAt(lqtversion, 2) < 0 then
- set qtversion to getAt(lqtversion, 1)
- if qtversion = 0 then
- alertthismoviemustneedqt3()
- quit()
- else
- if qtversion = 9 then
- alertqtnotinstalledproperly()
- quit()
- end if
- end if
- end if
- end if
- end
-
- on alertthismoviemustneedqt3
- showwarningdialog("QuickTime Required", "You must install QuickTime3.0 or later.")
- end
-
- on alertqtnotinstalledproperly
- showwarningdialog("QuickTime has problem", "QuickTime did not installed properly. Please full install QuickTime and try again.")
- end
-
- on wait sec
- startTimer()
- repeat while the timer < (60 * sec)
- put the timer
- put "wait loop"
- end repeat
- end
-